@charset "utf-8";
/* CSS Document */
h1{font-family: "Comic Sans MS"}
h2{font-family: "Comic Sans MS"}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  font-family: "Comic Sans MS";
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


 
img{width: 40%;
height: auto}

.column {
  float: left;
  width: 30%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.container {
  position: relative;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-family: "Comic Sans MS";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

footer {font-family: "Comic Sans MS"}
footer {font-size: 17px}

footer {
	font-family: "Comic Sans MS";
	font-size: 17px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: orange;
	color: white;
	text-align: center;
}